8227e7e437e5e57758918f820a0af3c993f770b9,java/code/src/com/redhat/rhn/frontend/action/configuration/sdc/ViewModifyPathsAction.java,ViewModifyPathsAction,execute,#ActionMapping#ActionForm#HttpServletRequest#HttpServletResponse#,89

Before Change


        RequestContext context = new RequestContext(request);
        User user = context.getLoggedInUser();
        
        RhnSet set =  getDecl().get(user);
        //if its not submitted
        // ==> this is the first visit to this page
        // clear the 'dirty set'
        if (!context.isSubmitted()) {
            set.clear();
            RhnSetManager.store(set);
        }
        setupButtons(request);
        RhnListSetHelper helper = new RhnListSetHelper(request);

After Change



        RequestContext context = new RequestContext(request);
        User user = context.getLoggedInUser();
        Set set = SessionSetHelper.lookupAndBind(request, getDecl());

        //if its not submitted
        // ==> this is the first visit to this page